Live Preview in VSCode
Posted on 2022-10-05 by
henrikvilhelmberglundLive Preview in VSCode
(Warning: Tutorial 004 has a better workflow!)
(creates a local web server for showing HTML+CSS+JS in an embedded browser in VSCode instead of opening a separate browser window)
- In VSCode, find Extensions in the left panel and search for Live Preview
- Click Live Preview and Install
- Create a new file and save it as .html
- Copy paste the following and save
<html>
<head>
<title>It works!</title>
</head>
<body>
<h1>H1!</h1>
<p>Hi, this is a paragraph.</p>
</body>
</html>
- With the .html file active, in the top right click Show Preview
- An embedded browser is opened where the project HTML+CSS+JS is displayed
- Success! (the page updates in realtime)